/// <summary>
 /// Kiểm tra và thêm mới Cosonuoi
 /// </summary>
 /// <param name="entity">Entity</param>
 /// <returns>Int32: ID của Cosonuoi Mới Thêm Vào</returns>
 public static Int32 Add(CosonuoiEntity entity)
 {
     checkLogic(entity);
     checkDuplicate(entity, false);
     checkFK(entity);
     return CosonuoiDAL.Add(entity);
 }
 /// <summary>
 /// Kiểm tra và chỉnh sửa Cosonuoi
 /// </summary>
 /// <param name="entity">CosonuoiEntity</param>
 /// <returns>bool:kết quả thực hiện</returns>
 public static bool Edit(CosonuoiEntity entity)
 {
     checkExist(entity.PK_iCosonuoiID);
     checkLogic(entity);
     checkDuplicate(entity, true);
     checkFK(entity);
     return CosonuoiDAL.Edit(entity);
 }
 /// <summary>
 /// Kiểm tra tồn tại khóa ngoại
 /// </summary>
 /// <param name="entity">CosonuoiEntity:entity</param>
 private static void checkFK(CosonuoiEntity entity)
 {
 }
 /// <summary>
 /// Kiểm tra logic Entity
 /// </summary>
 /// <param name="entity">CosonuoiEntity: entity</param>
 private static void checkLogic(CosonuoiEntity entity)
 {
     if (String.IsNullOrEmpty(entity.sTencoso))
         throw new Exception(EX_STENCOSO_EMPTY);
     if (String.IsNullOrEmpty(entity.sDiachi))
         throw new Exception(EX_SDIACHI_EMPTY);
 }
 /// <summary>
 /// Kiểm tra trùng lặp bản ghi
 /// </summary>
 /// <param name="entity">CosonuoiEntity: CosonuoiEntity</param>
 private static void checkDuplicate(CosonuoiEntity entity,bool checkPK)
 {
     /*
     Example
     List<CosonuoiEntity> list = CosonuoiDAL.GetAll();
     if (list.Exists(
         delegate(CosonuoiEntity oldEntity)
         {
             bool result =oldEntity.FIELD.Equals(entity.FIELD, StringComparison.OrdinalIgnoreCase);
             if(checkPK)
                 result=result && oldEntity.PK_iCosonuoiID != entity.PK_iCosonuoiID;
             return result;
         }
     ))
     {
         list.Clear();
         throw new Exception(EX_FIELD_EXISTED);
     }
     */
 }