Example #1
0
 public CostCenterCreation(ICreateRequestor caller)
 {
     InitializeComponent();
     callingForm = caller;
     LoadListData();
     WireUpLists();
 }
Example #2
0
 public DisplayCategory(ICreateRequestor caller, CostCategoryModel costCategoryModel)
 {
     InitializeComponent();
     callingForm = caller;
     model       = costCategoryModel;
     WireUpForm();
 }
 public ReceiptVoucher(ICreateRequestor caller)
 {
     InitializeComponent();
     callingForm = caller;
     LoadListData();
     WireUpVoucherForm();
     WireUpLists();
 }
Example #4
0
 public DisplayCostCenter(ICreateRequestor caller, CostCenterModel costCenterModel)
 {
     InitializeComponent();
     callingForm = caller;
     model       = costCenterModel;
     LoadListData();
     WireUpLists();
     WireUpForm();
 }
Example #5
0
 public DisplayGroup(ICreateRequestor caller, GroupModel groupModel)
 {
     InitializeComponent();
     callingForm = caller;
     model       = groupModel;
     LoadListData();
     WireUpLists();
     WireUpForm();
 }
Example #6
0
 public DisplayObject(ICreateRequestor caller, int id)
 {
     InitializeComponent();
     callingForm = caller;
     index       = id;
     LoadListData();
     WireUpLists();
     SearchInputTextBox.CharacterCasing = CharacterCasing.Normal;
 }
        public CreateLedger(ICreateRequestor caller)
        {
            InitializeComponent();
            callingForm = caller;
            DateTime now   = DateTime.Now;
            string   date  = now.Day.ToString();
            string   month = now.Month.ToString();
            string   year  = now.Year.ToString();

            CurrentDate.Text = $"Date : {date}-{month}-{year}";
            LoadListData();
            WireUpLists();
        }