Last active
May 7, 2020 17:23
-
-
Save mmcguff/b3e450b10d70f7c1c524ee3821e9c3e3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getHitchhikerMagicNumber() { | |
return 42; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace BYUI.HumanResources.Business.UpdateISeries | |
{ | |
public class UpdateISeriesBusiness | |
{ | |
/// <summary> | |
/// Updates a workday person | |
/// </summary> | |
/// <param name="persons"></param> | |
public void UpdateISeriesPersons(List<ISeriesPerson> persons) | |
{ | |
using (UpdateISeriesSpencerDataAccess dataAccessObject = new UpdateISeriesSpencerDataAccess()) | |
{ | |
dataAccessObject.UpdateISeriesPersons(persons); | |
} | |
} | |
public void GetDependentsQueries(ISeriesPerson person) | |
{ | |
using (UpdateISeriesSpencerDataAccess dataAccessObject = new UpdateISeriesSpencerDataAccess()) | |
{ | |
dataAccessObject.GetDependentsQueries(person); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment