Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UserBillService"/> class.
 /// </summary>
 public UserBillService()
 {
     _logRepository                        = new LogRepository();
     _billRepository                       = new BillRepository();
     _userBillRepository                   = new UserBillRepository();
     _recurrenceTypeRepository             = new RecurrenceTypeRepository();
     _userBillRecurrenceScheduleRepository = new UserBillRecurrenceScheduleRepository();
 }
        public RecurrenceTypeController(IRecurrenceTypeRepository repository, string catalog, LoginView view)
        {
            this._LoginId  = view.LoginId.ToLong();
            this._UserId   = view.UserId.ToInt();
            this._OfficeId = view.OfficeId.ToInt();
            this._Catalog  = catalog;

            this.RecurrenceTypeRepository = repository;
        }
        public RecurrenceTypeController(IRecurrenceTypeRepository repository, string catalog, LoginView view)
        {
            this._LoginId = view.LoginId.ToLong();
            this._UserId = view.UserId.ToInt();
            this._OfficeId = view.OfficeId.ToInt();
            this._Catalog = catalog;

            this.RecurrenceTypeRepository = repository;
        }
        public RecurrenceTypeController()
        {
            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.RecurrenceTypeRepository = new MixERP.Net.Schemas.Core.Data.RecurrenceType
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId  = this._UserId
            };
        }
        public RecurrenceTypeController()
        {
            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.RecurrenceTypeRepository = new MixERP.Net.Schemas.Core.Data.RecurrenceType
            {
                _Catalog = this._Catalog,
                _LoginId = this._LoginId,
                _UserId = this._UserId
            };
        }