public long CreateOrUpdateBranch(Entities.Branch branch)
 {
     try
     {
         UserBC BranchBC = new UserBC();
         BranchBC.CreateOrUpdateBranch(branch);
         return(branch.Id);
     }
     catch (Exception ex)
     {
         throw;
     }
     finally { }
 }