BLL.ImageProfile.DeleteProfile C# (CSharp) Method

DeleteProfile() public static method

public static DeleteProfile ( int profileId ) : bool
profileId int
return bool
        public static bool DeleteProfile(int profileId)
        {
            using (var uow = new DAL.UnitOfWork())
            {
                uow.ImageProfileRepository.Delete(profileId);
                return uow.Save();
            }
        }