示例#1
0
        static void Main(string[] args)
        {
            ProductsModel p = new ProductsModel();

            p.Add(new ProductsModel());

            CustomersModel customer = new CustomersModel()
            {
                Name = ""
            };

            customer.GetBy(1);

            Student mahmoud = new Student(new ITShareCourse());

            mahmoud.iCourse.GetCourseNames();
            Student ahmed = new Student(new Course());

            ahmed.iCourse.GetCourseNames();
        }
示例#2
0
 public void Update(CustomersModel obj)
 {
     throw new NotImplementedException();
 }