EOS/Service References/AuthenticationServices/Reference.cs
Nidhi Bhargava f0c1ab20e1 code push
2025-09-04 16:25:07 +05:30

1042 lines
50 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace GODATA.AuthenticationServices {
using System.Runtime.Serialization;
using System;
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
[System.Runtime.Serialization.DataContractAttribute(Name="UserModel", Namespace="http://schemas.datacontract.org/2004/07/AEServiceLibrary.Models.ManageUser")]
[System.SerializableAttribute()]
public partial class UserModel : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
[System.NonSerializedAttribute()]
private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Guid ApplicationIdField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string ApplicationNameField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string EmailField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private bool IsLockedOutField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Guid RoleIdField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string RoleNameField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Guid UserIdField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string UserNameField;
[global::System.ComponentModel.BrowsableAttribute(false)]
public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
get {
return this.extensionDataField;
}
set {
this.extensionDataField = value;
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Guid ApplicationId {
get {
return this.ApplicationIdField;
}
set {
if ((this.ApplicationIdField.Equals(value) != true)) {
this.ApplicationIdField = value;
this.RaisePropertyChanged("ApplicationId");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string ApplicationName {
get {
return this.ApplicationNameField;
}
set {
if ((object.ReferenceEquals(this.ApplicationNameField, value) != true)) {
this.ApplicationNameField = value;
this.RaisePropertyChanged("ApplicationName");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string Email {
get {
return this.EmailField;
}
set {
if ((object.ReferenceEquals(this.EmailField, value) != true)) {
this.EmailField = value;
this.RaisePropertyChanged("Email");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public bool IsLockedOut {
get {
return this.IsLockedOutField;
}
set {
if ((this.IsLockedOutField.Equals(value) != true)) {
this.IsLockedOutField = value;
this.RaisePropertyChanged("IsLockedOut");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Guid RoleId {
get {
return this.RoleIdField;
}
set {
if ((this.RoleIdField.Equals(value) != true)) {
this.RoleIdField = value;
this.RaisePropertyChanged("RoleId");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string RoleName {
get {
return this.RoleNameField;
}
set {
if ((object.ReferenceEquals(this.RoleNameField, value) != true)) {
this.RoleNameField = value;
this.RaisePropertyChanged("RoleName");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Guid UserId {
get {
return this.UserIdField;
}
set {
if ((this.UserIdField.Equals(value) != true)) {
this.UserIdField = value;
this.RaisePropertyChanged("UserId");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string UserName {
get {
return this.UserNameField;
}
set {
if ((object.ReferenceEquals(this.UserNameField, value) != true)) {
this.UserNameField = value;
this.RaisePropertyChanged("UserName");
}
}
}
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
[System.Runtime.Serialization.DataContractAttribute(Name="BulkUserModel", Namespace="http://schemas.datacontract.org/2004/07/AEServiceLibrary.Models.ManageUser")]
[System.SerializableAttribute()]
public partial class BulkUserModel : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
[System.NonSerializedAttribute()]
private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string ApplicationNameField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string EmailField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private bool IsApprovedField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string PasswordField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string PasswordAnswerField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string PasswordQuestionField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string RoleNameField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string UserNameField;
[global::System.ComponentModel.BrowsableAttribute(false)]
public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
get {
return this.extensionDataField;
}
set {
this.extensionDataField = value;
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string ApplicationName {
get {
return this.ApplicationNameField;
}
set {
if ((object.ReferenceEquals(this.ApplicationNameField, value) != true)) {
this.ApplicationNameField = value;
this.RaisePropertyChanged("ApplicationName");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string Email {
get {
return this.EmailField;
}
set {
if ((object.ReferenceEquals(this.EmailField, value) != true)) {
this.EmailField = value;
this.RaisePropertyChanged("Email");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public bool IsApproved {
get {
return this.IsApprovedField;
}
set {
if ((this.IsApprovedField.Equals(value) != true)) {
this.IsApprovedField = value;
this.RaisePropertyChanged("IsApproved");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string Password {
get {
return this.PasswordField;
}
set {
if ((object.ReferenceEquals(this.PasswordField, value) != true)) {
this.PasswordField = value;
this.RaisePropertyChanged("Password");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string PasswordAnswer {
get {
return this.PasswordAnswerField;
}
set {
if ((object.ReferenceEquals(this.PasswordAnswerField, value) != true)) {
this.PasswordAnswerField = value;
this.RaisePropertyChanged("PasswordAnswer");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string PasswordQuestion {
get {
return this.PasswordQuestionField;
}
set {
if ((object.ReferenceEquals(this.PasswordQuestionField, value) != true)) {
this.PasswordQuestionField = value;
this.RaisePropertyChanged("PasswordQuestion");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string RoleName {
get {
return this.RoleNameField;
}
set {
if ((object.ReferenceEquals(this.RoleNameField, value) != true)) {
this.RoleNameField = value;
this.RaisePropertyChanged("RoleName");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string UserName {
get {
return this.UserNameField;
}
set {
if ((object.ReferenceEquals(this.UserNameField, value) != true)) {
this.UserNameField = value;
this.RaisePropertyChanged("UserName");
}
}
}
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
[System.Runtime.Serialization.DataContractAttribute(Name="ApplicationUserModel", Namespace="http://schemas.datacontract.org/2004/07/AEServiceLibrary.Models.ManageUser")]
[System.SerializableAttribute()]
public partial class ApplicationUserModel : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
[System.NonSerializedAttribute()]
private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private GODATA.AuthenticationServices.ApplicationModel applicationField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private GODATA.AuthenticationServices.UserModel[] usersField;
[global::System.ComponentModel.BrowsableAttribute(false)]
public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
get {
return this.extensionDataField;
}
set {
this.extensionDataField = value;
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public GODATA.AuthenticationServices.ApplicationModel application {
get {
return this.applicationField;
}
set {
if ((object.ReferenceEquals(this.applicationField, value) != true)) {
this.applicationField = value;
this.RaisePropertyChanged("application");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public GODATA.AuthenticationServices.UserModel[] users {
get {
return this.usersField;
}
set {
if ((object.ReferenceEquals(this.usersField, value) != true)) {
this.usersField = value;
this.RaisePropertyChanged("users");
}
}
}
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
[System.Runtime.Serialization.DataContractAttribute(Name="ApplicationModel", Namespace="http://schemas.datacontract.org/2004/07/AEServiceLibrary.Models.ManageApplication" +
"")]
[System.SerializableAttribute()]
public partial class ApplicationModel : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
[System.NonSerializedAttribute()]
private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string ApplicationDescriptionField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Guid ApplicationIdField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string ApplicationNameField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string ApplicationTitleField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string ApplicationUrlField;
[global::System.ComponentModel.BrowsableAttribute(false)]
public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
get {
return this.extensionDataField;
}
set {
this.extensionDataField = value;
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string ApplicationDescription {
get {
return this.ApplicationDescriptionField;
}
set {
if ((object.ReferenceEquals(this.ApplicationDescriptionField, value) != true)) {
this.ApplicationDescriptionField = value;
this.RaisePropertyChanged("ApplicationDescription");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Guid ApplicationId {
get {
return this.ApplicationIdField;
}
set {
if ((this.ApplicationIdField.Equals(value) != true)) {
this.ApplicationIdField = value;
this.RaisePropertyChanged("ApplicationId");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string ApplicationName {
get {
return this.ApplicationNameField;
}
set {
if ((object.ReferenceEquals(this.ApplicationNameField, value) != true)) {
this.ApplicationNameField = value;
this.RaisePropertyChanged("ApplicationName");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string ApplicationTitle {
get {
return this.ApplicationTitleField;
}
set {
if ((object.ReferenceEquals(this.ApplicationTitleField, value) != true)) {
this.ApplicationTitleField = value;
this.RaisePropertyChanged("ApplicationTitle");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string ApplicationUrl {
get {
return this.ApplicationUrlField;
}
set {
if ((object.ReferenceEquals(this.ApplicationUrlField, value) != true)) {
this.ApplicationUrlField = value;
this.RaisePropertyChanged("ApplicationUrl");
}
}
}
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
[System.Runtime.Serialization.DataContractAttribute(Name="UserDetailModel", Namespace="http://schemas.datacontract.org/2004/07/AEServiceLibrary.Models.ManageUser")]
[System.SerializableAttribute()]
public partial class UserDetailModel : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
[System.NonSerializedAttribute()]
private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string emailField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private bool isApprovedField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string passwordField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string passwordAnswerField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string passwordQuestionField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Guid userIdField;
[global::System.ComponentModel.BrowsableAttribute(false)]
public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
get {
return this.extensionDataField;
}
set {
this.extensionDataField = value;
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string email {
get {
return this.emailField;
}
set {
if ((object.ReferenceEquals(this.emailField, value) != true)) {
this.emailField = value;
this.RaisePropertyChanged("email");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public bool isApproved {
get {
return this.isApprovedField;
}
set {
if ((this.isApprovedField.Equals(value) != true)) {
this.isApprovedField = value;
this.RaisePropertyChanged("isApproved");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string password {
get {
return this.passwordField;
}
set {
if ((object.ReferenceEquals(this.passwordField, value) != true)) {
this.passwordField = value;
this.RaisePropertyChanged("password");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string passwordAnswer {
get {
return this.passwordAnswerField;
}
set {
if ((object.ReferenceEquals(this.passwordAnswerField, value) != true)) {
this.passwordAnswerField = value;
this.RaisePropertyChanged("passwordAnswer");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string passwordQuestion {
get {
return this.passwordQuestionField;
}
set {
if ((object.ReferenceEquals(this.passwordQuestionField, value) != true)) {
this.passwordQuestionField = value;
this.RaisePropertyChanged("passwordQuestion");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Guid userId {
get {
return this.userIdField;
}
set {
if ((this.userIdField.Equals(value) != true)) {
this.userIdField = value;
this.RaisePropertyChanged("userId");
}
}
}
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
[System.Runtime.Serialization.DataContractAttribute(Name="LoginUserDetails", Namespace="http://schemas.datacontract.org/2004/07/AEServiceLibrary.Models.ManageUser")]
[System.SerializableAttribute()]
public partial class LoginUserDetails : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
[System.NonSerializedAttribute()]
private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private string[] RoleField;
[System.Runtime.Serialization.OptionalFieldAttribute()]
private System.Guid userIdField;
[global::System.ComponentModel.BrowsableAttribute(false)]
public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
get {
return this.extensionDataField;
}
set {
this.extensionDataField = value;
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public string[] Role {
get {
return this.RoleField;
}
set {
if ((object.ReferenceEquals(this.RoleField, value) != true)) {
this.RoleField = value;
this.RaisePropertyChanged("Role");
}
}
}
[System.Runtime.Serialization.DataMemberAttribute()]
public System.Guid userId {
get {
return this.userIdField;
}
set {
if ((this.userIdField.Equals(value) != true)) {
this.userIdField = value;
this.RaisePropertyChanged("userId");
}
}
}
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string propertyName) {
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if ((propertyChanged != null)) {
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
}
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
[System.ServiceModel.ServiceContractAttribute(ConfigurationName="AuthenticationServices.IUser")]
public interface IUser {
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetUser", ReplyAction="http://tempuri.org/IUser/GetUserResponse")]
GODATA.AuthenticationServices.UserModel[] GetUser();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetUser", ReplyAction="http://tempuri.org/IUser/GetUserResponse")]
System.Threading.Tasks.Task<GODATA.AuthenticationServices.UserModel[]> GetUserAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetApplicationUser", ReplyAction="http://tempuri.org/IUser/GetApplicationUserResponse")]
GODATA.AuthenticationServices.UserModel[] GetApplicationUser(System.Guid applicationId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetApplicationUser", ReplyAction="http://tempuri.org/IUser/GetApplicationUserResponse")]
System.Threading.Tasks.Task<GODATA.AuthenticationServices.UserModel[]> GetApplicationUserAsync(System.Guid applicationId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetUserById", ReplyAction="http://tempuri.org/IUser/GetUserByIdResponse")]
GODATA.AuthenticationServices.UserModel GetUserById(System.Guid userId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetUserById", ReplyAction="http://tempuri.org/IUser/GetUserByIdResponse")]
System.Threading.Tasks.Task<GODATA.AuthenticationServices.UserModel> GetUserByIdAsync(System.Guid userId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetUserByRole", ReplyAction="http://tempuri.org/IUser/GetUserByRoleResponse")]
GODATA.AuthenticationServices.UserModel[] GetUserByRole(System.Guid applicationId, string roleName);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetUserByRole", ReplyAction="http://tempuri.org/IUser/GetUserByRoleResponse")]
System.Threading.Tasks.Task<GODATA.AuthenticationServices.UserModel[]> GetUserByRoleAsync(System.Guid applicationId, string roleName);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/CreateUserWithRole", ReplyAction="http://tempuri.org/IUser/CreateUserWithRoleResponse")]
bool CreateUserWithRole(string userName, string password, string email, string passwordQuestion, string passwordAnswer, bool isApprovedstring, string applicationName, string role);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/CreateUserWithRole", ReplyAction="http://tempuri.org/IUser/CreateUserWithRoleResponse")]
System.Threading.Tasks.Task<bool> CreateUserWithRoleAsync(string userName, string password, string email, string passwordQuestion, string passwordAnswer, bool isApprovedstring, string applicationName, string role);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/CreateUser1", ReplyAction="http://tempuri.org/IUser/CreateUser1Response")]
bool CreateUser1(string userName, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, string applicationName);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/CreateUser1", ReplyAction="http://tempuri.org/IUser/CreateUser1Response")]
System.Threading.Tasks.Task<bool> CreateUser1Async(string userName, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, string applicationName);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/UpdateUserWithRole", ReplyAction="http://tempuri.org/IUser/UpdateUserWithRoleResponse")]
bool UpdateUserWithRole(System.Guid userId, string userName, string email, bool isApproved, string applicationName, string role, bool isLockedOut);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/UpdateUserWithRole", ReplyAction="http://tempuri.org/IUser/UpdateUserWithRoleResponse")]
System.Threading.Tasks.Task<bool> UpdateUserWithRoleAsync(System.Guid userId, string userName, string email, bool isApproved, string applicationName, string role, bool isLockedOut);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/UpdateUser", ReplyAction="http://tempuri.org/IUser/UpdateUserResponse")]
bool UpdateUser(System.Guid userId, string userName, string email, bool isApproved, string applicationName, bool isLockedOut);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/UpdateUser", ReplyAction="http://tempuri.org/IUser/UpdateUserResponse")]
System.Threading.Tasks.Task<bool> UpdateUserAsync(System.Guid userId, string userName, string email, bool isApproved, string applicationName, bool isLockedOut);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/DeleteUser", ReplyAction="http://tempuri.org/IUser/DeleteUserResponse")]
bool DeleteUser(System.Guid userId, System.Guid applicationId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/DeleteUser", ReplyAction="http://tempuri.org/IUser/DeleteUserResponse")]
System.Threading.Tasks.Task<bool> DeleteUserAsync(System.Guid userId, System.Guid applicationId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/UnlockUser", ReplyAction="http://tempuri.org/IUser/UnlockUserResponse")]
bool UnlockUser(System.Guid userId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/UnlockUser", ReplyAction="http://tempuri.org/IUser/UnlockUserResponse")]
System.Threading.Tasks.Task<bool> UnlockUserAsync(System.Guid userId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetPassword", ReplyAction="http://tempuri.org/IUser/GetPasswordResponse")]
string GetPassword(System.Guid userId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetPassword", ReplyAction="http://tempuri.org/IUser/GetPasswordResponse")]
System.Threading.Tasks.Task<string> GetPasswordAsync(System.Guid userId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/CreateBulkUserWithRole", ReplyAction="http://tempuri.org/IUser/CreateBulkUserWithRoleResponse")]
bool CreateBulkUserWithRole(GODATA.AuthenticationServices.BulkUserModel[] listBulkUserModel);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/CreateBulkUserWithRole", ReplyAction="http://tempuri.org/IUser/CreateBulkUserWithRoleResponse")]
System.Threading.Tasks.Task<bool> CreateBulkUserWithRoleAsync(GODATA.AuthenticationServices.BulkUserModel[] listBulkUserModel);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetTotalUsers", ReplyAction="http://tempuri.org/IUser/GetTotalUsersResponse")]
int GetTotalUsers();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetTotalUsers", ReplyAction="http://tempuri.org/IUser/GetTotalUsersResponse")]
System.Threading.Tasks.Task<int> GetTotalUsersAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetApplicationUsers", ReplyAction="http://tempuri.org/IUser/GetApplicationUsersResponse")]
GODATA.AuthenticationServices.ApplicationUserModel[] GetApplicationUsers();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetApplicationUsers", ReplyAction="http://tempuri.org/IUser/GetApplicationUsersResponse")]
System.Threading.Tasks.Task<GODATA.AuthenticationServices.ApplicationUserModel[]> GetApplicationUsersAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetUsersName", ReplyAction="http://tempuri.org/IUser/GetUsersNameResponse")]
GODATA.AuthenticationServices.UserModel[] GetUsersName();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetUsersName", ReplyAction="http://tempuri.org/IUser/GetUsersNameResponse")]
System.Threading.Tasks.Task<GODATA.AuthenticationServices.UserModel[]> GetUsersNameAsync();
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetUserDetail", ReplyAction="http://tempuri.org/IUser/GetUserDetailResponse")]
GODATA.AuthenticationServices.UserDetailModel GetUserDetail(System.Guid userId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/GetUserDetail", ReplyAction="http://tempuri.org/IUser/GetUserDetailResponse")]
System.Threading.Tasks.Task<GODATA.AuthenticationServices.UserDetailModel> GetUserDetailAsync(System.Guid userId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/CreateUser2", ReplyAction="http://tempuri.org/IUser/CreateUser2Response")]
bool CreateUser2(string userName, System.Guid applicationId, System.Nullable<System.Guid> roleId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/CreateUser2", ReplyAction="http://tempuri.org/IUser/CreateUser2Response")]
System.Threading.Tasks.Task<bool> CreateUser2Async(string userName, System.Guid applicationId, System.Nullable<System.Guid> roleId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/validateUser", ReplyAction="http://tempuri.org/IUser/validateUserResponse")]
string[] validateUser(string userName, string password, string applicatioName);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/validateUser", ReplyAction="http://tempuri.org/IUser/validateUserResponse")]
System.Threading.Tasks.Task<string[]> validateUserAsync(string userName, string password, string applicatioName);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/ChangePasswordByApplication", ReplyAction="http://tempuri.org/IUser/ChangePasswordByApplicationResponse")]
bool ChangePasswordByApplication(string userName, string oldPassword, string newPassword, string applicatioName);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/ChangePasswordByApplication", ReplyAction="http://tempuri.org/IUser/ChangePasswordByApplicationResponse")]
System.Threading.Tasks.Task<bool> ChangePasswordByApplicationAsync(string userName, string oldPassword, string newPassword, string applicatioName);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/ChangePassword", ReplyAction="http://tempuri.org/IUser/ChangePasswordResponse")]
bool ChangePassword(string userName, string oldPassword, string newPassword);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/ChangePassword", ReplyAction="http://tempuri.org/IUser/ChangePasswordResponse")]
System.Threading.Tasks.Task<bool> ChangePasswordAsync(string userName, string oldPassword, string newPassword);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/ForgotPassword", ReplyAction="http://tempuri.org/IUser/ForgotPasswordResponse")]
string ForgotPassword(string mailId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/ForgotPassword", ReplyAction="http://tempuri.org/IUser/ForgotPasswordResponse")]
System.Threading.Tasks.Task<string> ForgotPasswordAsync(string mailId);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/ForgotPasswordByApplication", ReplyAction="http://tempuri.org/IUser/ForgotPasswordByApplicationResponse")]
string ForgotPasswordByApplication(string mailId, string applicatioName);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/ForgotPasswordByApplication", ReplyAction="http://tempuri.org/IUser/ForgotPasswordByApplicationResponse")]
System.Threading.Tasks.Task<string> ForgotPasswordByApplicationAsync(string mailId, string applicatioName);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/validateLoginDetails", ReplyAction="http://tempuri.org/IUser/validateLoginDetailsResponse")]
GODATA.AuthenticationServices.LoginUserDetails validateLoginDetails(string userName, string password, string applicationName);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IUser/validateLoginDetails", ReplyAction="http://tempuri.org/IUser/validateLoginDetailsResponse")]
System.Threading.Tasks.Task<GODATA.AuthenticationServices.LoginUserDetails> validateLoginDetailsAsync(string userName, string password, string applicationName);
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
public interface IUserChannel : GODATA.AuthenticationServices.IUser, System.ServiceModel.IClientChannel {
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
public partial class UserClient : System.ServiceModel.ClientBase<GODATA.AuthenticationServices.IUser>, GODATA.AuthenticationServices.IUser {
public UserClient() {
}
public UserClient(string endpointConfigurationName) :
base(endpointConfigurationName) {
}
public UserClient(string endpointConfigurationName, string remoteAddress) :
base(endpointConfigurationName, remoteAddress) {
}
public UserClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
base(endpointConfigurationName, remoteAddress) {
}
public UserClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
base(binding, remoteAddress) {
}
public GODATA.AuthenticationServices.UserModel[] GetUser() {
return base.Channel.GetUser();
}
public System.Threading.Tasks.Task<GODATA.AuthenticationServices.UserModel[]> GetUserAsync() {
return base.Channel.GetUserAsync();
}
public GODATA.AuthenticationServices.UserModel[] GetApplicationUser(System.Guid applicationId) {
return base.Channel.GetApplicationUser(applicationId);
}
public System.Threading.Tasks.Task<GODATA.AuthenticationServices.UserModel[]> GetApplicationUserAsync(System.Guid applicationId) {
return base.Channel.GetApplicationUserAsync(applicationId);
}
public GODATA.AuthenticationServices.UserModel GetUserById(System.Guid userId) {
return base.Channel.GetUserById(userId);
}
public System.Threading.Tasks.Task<GODATA.AuthenticationServices.UserModel> GetUserByIdAsync(System.Guid userId) {
return base.Channel.GetUserByIdAsync(userId);
}
public GODATA.AuthenticationServices.UserModel[] GetUserByRole(System.Guid applicationId, string roleName) {
return base.Channel.GetUserByRole(applicationId, roleName);
}
public System.Threading.Tasks.Task<GODATA.AuthenticationServices.UserModel[]> GetUserByRoleAsync(System.Guid applicationId, string roleName) {
return base.Channel.GetUserByRoleAsync(applicationId, roleName);
}
public bool CreateUserWithRole(string userName, string password, string email, string passwordQuestion, string passwordAnswer, bool isApprovedstring, string applicationName, string role) {
return base.Channel.CreateUserWithRole(userName, password, email, passwordQuestion, passwordAnswer, isApprovedstring, applicationName, role);
}
public System.Threading.Tasks.Task<bool> CreateUserWithRoleAsync(string userName, string password, string email, string passwordQuestion, string passwordAnswer, bool isApprovedstring, string applicationName, string role) {
return base.Channel.CreateUserWithRoleAsync(userName, password, email, passwordQuestion, passwordAnswer, isApprovedstring, applicationName, role);
}
public bool CreateUser1(string userName, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, string applicationName) {
return base.Channel.CreateUser1(userName, password, email, passwordQuestion, passwordAnswer, isApproved, applicationName);
}
public System.Threading.Tasks.Task<bool> CreateUser1Async(string userName, string password, string email, string passwordQuestion, string passwordAnswer, bool isApproved, string applicationName) {
return base.Channel.CreateUser1Async(userName, password, email, passwordQuestion, passwordAnswer, isApproved, applicationName);
}
public bool UpdateUserWithRole(System.Guid userId, string userName, string email, bool isApproved, string applicationName, string role, bool isLockedOut) {
return base.Channel.UpdateUserWithRole(userId, userName, email, isApproved, applicationName, role, isLockedOut);
}
public System.Threading.Tasks.Task<bool> UpdateUserWithRoleAsync(System.Guid userId, string userName, string email, bool isApproved, string applicationName, string role, bool isLockedOut) {
return base.Channel.UpdateUserWithRoleAsync(userId, userName, email, isApproved, applicationName, role, isLockedOut);
}
public bool UpdateUser(System.Guid userId, string userName, string email, bool isApproved, string applicationName, bool isLockedOut) {
return base.Channel.UpdateUser(userId, userName, email, isApproved, applicationName, isLockedOut);
}
public System.Threading.Tasks.Task<bool> UpdateUserAsync(System.Guid userId, string userName, string email, bool isApproved, string applicationName, bool isLockedOut) {
return base.Channel.UpdateUserAsync(userId, userName, email, isApproved, applicationName, isLockedOut);
}
public bool DeleteUser(System.Guid userId, System.Guid applicationId) {
return base.Channel.DeleteUser(userId, applicationId);
}
public System.Threading.Tasks.Task<bool> DeleteUserAsync(System.Guid userId, System.Guid applicationId) {
return base.Channel.DeleteUserAsync(userId, applicationId);
}
public bool UnlockUser(System.Guid userId) {
return base.Channel.UnlockUser(userId);
}
public System.Threading.Tasks.Task<bool> UnlockUserAsync(System.Guid userId) {
return base.Channel.UnlockUserAsync(userId);
}
public string GetPassword(System.Guid userId) {
return base.Channel.GetPassword(userId);
}
public System.Threading.Tasks.Task<string> GetPasswordAsync(System.Guid userId) {
return base.Channel.GetPasswordAsync(userId);
}
public bool CreateBulkUserWithRole(GODATA.AuthenticationServices.BulkUserModel[] listBulkUserModel) {
return base.Channel.CreateBulkUserWithRole(listBulkUserModel);
}
public System.Threading.Tasks.Task<bool> CreateBulkUserWithRoleAsync(GODATA.AuthenticationServices.BulkUserModel[] listBulkUserModel) {
return base.Channel.CreateBulkUserWithRoleAsync(listBulkUserModel);
}
public int GetTotalUsers() {
return base.Channel.GetTotalUsers();
}
public System.Threading.Tasks.Task<int> GetTotalUsersAsync() {
return base.Channel.GetTotalUsersAsync();
}
public GODATA.AuthenticationServices.ApplicationUserModel[] GetApplicationUsers() {
return base.Channel.GetApplicationUsers();
}
public System.Threading.Tasks.Task<GODATA.AuthenticationServices.ApplicationUserModel[]> GetApplicationUsersAsync() {
return base.Channel.GetApplicationUsersAsync();
}
public GODATA.AuthenticationServices.UserModel[] GetUsersName() {
return base.Channel.GetUsersName();
}
public System.Threading.Tasks.Task<GODATA.AuthenticationServices.UserModel[]> GetUsersNameAsync() {
return base.Channel.GetUsersNameAsync();
}
public GODATA.AuthenticationServices.UserDetailModel GetUserDetail(System.Guid userId) {
return base.Channel.GetUserDetail(userId);
}
public System.Threading.Tasks.Task<GODATA.AuthenticationServices.UserDetailModel> GetUserDetailAsync(System.Guid userId) {
return base.Channel.GetUserDetailAsync(userId);
}
public bool CreateUser2(string userName, System.Guid applicationId, System.Nullable<System.Guid> roleId) {
return base.Channel.CreateUser2(userName, applicationId, roleId);
}
public System.Threading.Tasks.Task<bool> CreateUser2Async(string userName, System.Guid applicationId, System.Nullable<System.Guid> roleId) {
return base.Channel.CreateUser2Async(userName, applicationId, roleId);
}
public string[] validateUser(string userName, string password, string applicatioName) {
return base.Channel.validateUser(userName, password, applicatioName);
}
public System.Threading.Tasks.Task<string[]> validateUserAsync(string userName, string password, string applicatioName) {
return base.Channel.validateUserAsync(userName, password, applicatioName);
}
public bool ChangePasswordByApplication(string userName, string oldPassword, string newPassword, string applicatioName) {
return base.Channel.ChangePasswordByApplication(userName, oldPassword, newPassword, applicatioName);
}
public System.Threading.Tasks.Task<bool> ChangePasswordByApplicationAsync(string userName, string oldPassword, string newPassword, string applicatioName) {
return base.Channel.ChangePasswordByApplicationAsync(userName, oldPassword, newPassword, applicatioName);
}
public bool ChangePassword(string userName, string oldPassword, string newPassword) {
return base.Channel.ChangePassword(userName, oldPassword, newPassword);
}
public System.Threading.Tasks.Task<bool> ChangePasswordAsync(string userName, string oldPassword, string newPassword) {
return base.Channel.ChangePasswordAsync(userName, oldPassword, newPassword);
}
public string ForgotPassword(string mailId) {
return base.Channel.ForgotPassword(mailId);
}
public System.Threading.Tasks.Task<string> ForgotPasswordAsync(string mailId) {
return base.Channel.ForgotPasswordAsync(mailId);
}
public string ForgotPasswordByApplication(string mailId, string applicatioName) {
return base.Channel.ForgotPasswordByApplication(mailId, applicatioName);
}
public System.Threading.Tasks.Task<string> ForgotPasswordByApplicationAsync(string mailId, string applicatioName) {
return base.Channel.ForgotPasswordByApplicationAsync(mailId, applicatioName);
}
public GODATA.AuthenticationServices.LoginUserDetails validateLoginDetails(string userName, string password, string applicationName) {
return base.Channel.validateLoginDetails(userName, password, applicationName);
}
public System.Threading.Tasks.Task<GODATA.AuthenticationServices.LoginUserDetails> validateLoginDetailsAsync(string userName, string password, string applicationName) {
return base.Channel.validateLoginDetailsAsync(userName, password, applicationName);
}
}
}