BLL.ImageProfile.DeleteProfile C# (CSharp) Метод

DeleteProfile() публичный статический Метод

public static DeleteProfile ( int profileId ) : bool
profileId int
Результат bool
        public static bool DeleteProfile(int profileId)
        {
            using (var uow = new DAL.UnitOfWork())
            {
                uow.ImageProfileRepository.Delete(profileId);
                return uow.Save();
            }
        }