Exemplo n.º 1
0
        public static Store GetStoreByID(int ido)
        {
            StoreDetails tbdt = myRealProvider.GetStoreByID(ido);
            MyDateTime   x1   = new MyDateTime(tbdt.AddedDateCompany);
            MyDateTime   x2   = new MyDateTime(tbdt.AddedDateClient);

            if (tbdt != null)
            {
                return(new Store(tbdt.ID, tbdt.TypeId, tbdt.Amount, x1, x2, tbdt.TypeName));
            }
            else
            {
                return(null);
            }
        }