public TaskDialog(MatterSearchResultDTO matter, IPostingComplete listener)
     : base(UITableViewStyle.Grouped, null)
 {
     this.matter = matter;
     this.listener = listener;
     selectedDate = DateTime.Now;
     GetFeeEarners (0);
     BuildInterface ();
 }
Exemplo n.º 2
0
 public PostNote(MatterDTO matter, IPostingComplete listener)
     : base(UITableViewStyle.Grouped, null)
 {
     this.matter = matter;
     this.listener = listener;
     selectedDate = DateTime.Now;
     GetTariffCodes (0);
     BuildInterface ();
 }
Exemplo n.º 3
0
 public PostFee(IPostingComplete listener, MatterDetail matterDetail, MatterDTO matter, bool isUnbillable)
     : base(UITableViewStyle.Grouped, null)
 {
     this.matter = matter;
     this.matterDetail = matterDetail;
     this.isUnbillable = isUnbillable;
     this.listener = listener;
     BuildInterface ();
     GetTariffCodes (100, DataUtil.TARIFF_CODE_TYPE_FEES);
 }
 //public override void ViewWillAppear (bool animated)
 //{
 //}
 public PostNoteDialog(MatterDTO matter, IPostingComplete listener)
     : base(UITableViewStyle.Grouped, null, true)
 {
     this.matter = matter;
     this.listener = listener;
     selectedDate = DateTime.Now;
     //this.NavigationItem.RightBarButtonItem = new UIBarButtonItem ("Back", UIBarButtonItemStyle.Bordered, delegate(object sender, EventArgs e) {
     //	NavigationController.PopViewControllerAnimated (true);
     //});
     GetTariffCodes (0);
     BuildInterface ();
 }