public CustomFieldDefinitionViewController(ICustomFieldDefinitionViewRepository repository, string catalog, LoginView view) { this._LoginId = view.LoginId.To <long>(); this._UserId = view.UserId.To <int>(); this._OfficeId = view.OfficeId.To <int>(); this._Catalog = catalog; this.CustomFieldDefinitionViewRepository = repository; }
public CustomFieldDefinitionViewController(ICustomFieldDefinitionViewRepository repository, string catalog, LoginView view) { this._LoginId = view.LoginId.To<long>(); this._UserId = view.UserId.To<int>(); this._OfficeId = view.OfficeId.To<int>(); this._Catalog = catalog; this.CustomFieldDefinitionViewRepository = repository; }
public CustomFieldDefinitionViewController() { this._LoginId = AppUsers.GetCurrent().View.LoginId.To <long>(); this._UserId = AppUsers.GetCurrent().View.UserId.To <int>(); this._OfficeId = AppUsers.GetCurrent().View.OfficeId.To <int>(); this._Catalog = AppUsers.GetCatalog(); this.CustomFieldDefinitionViewRepository = new Frapid.Config.DataAccess.CustomFieldDefinitionView { _Catalog = this._Catalog, _LoginId = this._LoginId, _UserId = this._UserId }; }
public CustomFieldDefinitionViewController() { this._LoginId = AppUsers.GetCurrent().View.LoginId.To<long>(); this._UserId = AppUsers.GetCurrent().View.UserId.To<int>(); this._OfficeId = AppUsers.GetCurrent().View.OfficeId.To<int>(); this._Catalog = AppUsers.GetCatalog(); this.CustomFieldDefinitionViewRepository = new Frapid.Config.DataAccess.CustomFieldDefinitionView { _Catalog = this._Catalog, _LoginId = this._LoginId, _UserId = this._UserId }; }
public CustomFieldDefinitionViewController() { this._LoginId = AppUsers.GetCurrent().View.LoginId.ToLong(); this._UserId = AppUsers.GetCurrent().View.UserId.ToInt(); this._OfficeId = AppUsers.GetCurrent().View.OfficeId.ToInt(); this._Catalog = AppUsers.GetCurrentUserDB(); this.CustomFieldDefinitionViewRepository = new MixERP.Net.Schemas.Core.Data.CustomFieldDefinitionView { _Catalog = this._Catalog, _LoginId = this._LoginId, _UserId = this._UserId }; }
protected override void Initialize(HttpControllerContext context) { base.Initialize(context); if (this.CustomFieldDefinitionViewRepository == null) { this.CustomFieldDefinitionViewRepository = new Frapid.Config.DataAccess.CustomFieldDefinitionView { _Catalog = this.MetaUser.Catalog, _LoginId = this.MetaUser.LoginId, _UserId = this.MetaUser.UserId }; } }
public CustomFieldDefinitionViewController(ICustomFieldDefinitionViewRepository repository) { this.CustomFieldDefinitionViewRepository = repository; }