Example #1
0
 public RemisierHistory(IRemisierEmployee remisierEmployee, 
     decimal kickBack, decimal introductionFee, decimal introductionFeeReduction,
     decimal subsequentDepositFee, decimal subsequentDepositFeeReduction,
     IInternalEmployeeLogin employee, DateTime changeDate)
 {
     RemisierEmployee = remisierEmployee;
     KickBack = kickBack;
     IntroductionFee = introductionFee;
     SubsequentDepositFee = subsequentDepositFee;
     IntroductionFeeReduction = introductionFeeReduction;
     SubsequentDepositFeeReduction = subsequentDepositFeeReduction;
     Employee = employee;
     ChangeDate = changeDate.Date;
 }
Example #2
0
 public static DataSet GetRemisierEmployees(int remisierID)
 {
     IDalSession session = NHSessionFactory.CreateSession();
     DataSet ds = null;
     IRemisier rem = RemisierMapper.GetRemisier(session, remisierID);
     if (rem != null && rem.Employees != null)
     {
         IRemisierEmployeesCollection employeeColl = rem.Employees;
         IRemisierEmployee[] employeeList = new IRemisierEmployee[employeeColl.Count];
         employeeColl.CopyTo(employeeList, 0);
         ds = DataSetBuilder.CreateDataSetFromBusinessObjectList(employeeList, "Key, FullName");
         Utility.AddEmptyFirstRow(ds.Tables[0]);
     }
     return ds;
 }
Example #3
0
 public ContactsIntroducer(IContact con, IRemisier rem, IRemisierEmployee emp)
 {
     this.Contact = con;
     this.Remisier = rem;
     this.RemisierEmployee = emp;
 }
 public RemisierEmployeeLoginPerson(IRemisierEmployee remisierEmployee)
 {
     RemisierEmployee = remisierEmployee;
 }