Example #1
0
        public static int InsertCompany(int id, string name, string details)
        {
            MyDateTime     xx  = new MyDateTime(DateTime.Now);
            CompanyDetails tb1 = new CompanyDetails(id, name, details, xx, 0);
            int            x   = myRealProvider.InsertCompany(tb1);

            return(x);
        }