/// /// Gets the n-th Photographer from the Database /// public static PhotographerModel GetPhotographer(int id) { return(EH.Try(() => DataAccessLayer.GetPhotographer(id))); }
/// /// Creates a new Photographer in the Database /// public static void CreatePhotographer(PhotographerViewModel vm) { DataAccessLayer.CreatePhotographer(vm); }
public BusinessLayer() { DAL = new DataAccessLayer(); }