Example #1
0
        // Thêm một đối tượng
        public bool Insert(LoaiSanPham model)
        {
            LoaiSanPham dbEntry = context.LoaiSanPhams.Find(model.idloaisp);

            if (dbEntry != null)
            {
                return(false);
            }
            context.LoaiSanPhams.Add(model);
            context.SaveChanges();

            return(true);
        }
Example #2
0
        // Xóa một đối tượng
        public bool Delete(string MaSP)
        {
            LoaiSanPham dbEntry = context.LoaiSanPhams.Find(MaSP);

            if (dbEntry == null)
            {
                return(false);
            }
            context.LoaiSanPhams.Remove(dbEntry);

            context.SaveChanges();
            return(true);
        }
Example #3
0
        // Trả về một đối tượng danh mục, khi biết Khóa
        public LoaiSanPham FindEntity(string MaSP)
        {
            LoaiSanPham dbEntry = context.LoaiSanPhams.Find(MaSP);

            return(dbEntry);
        }