This file contains 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 () { | |
'use strict'; | |
angular | |
.module( 'app.purchases.products' ) | |
.controller( 'ReadProductController', ReadProductController ); | |
//Check out the description to go to ReadProductFactory | |
ReadProductController.$inject = [ '$scope', 'ReadProductFactory' ]; |
This file contains 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 () { | |
'use strict'; | |
angular | |
.module( 'app.purchases.products' ) | |
.factory( 'ReadProductFactory', ReadProductFactory ); | |
ReadProductFactory.$inject = [ 'Restangular' ]; |
This file contains 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 () { | |
'use strict'; | |
angular | |
.module( 'app.purchases' ) | |
.controller( 'PurchasesDashboardController', PurchasesDashboardController ); | |
PurchasesDashboardController.$inject = [ '$scope', 'contentService' ]; |
This file contains 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 () { | |
'use strict'; | |
angular | |
.module( 'app.core' ) | |
.service( 'contentService', contentService ); | |
contentService.$inject = [ '$http' ]; | |
This file contains 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.Numerics; | |
namespace Guia3Ej15 | |
{ | |
public class Program | |
{ | |
public static void Main() | |
{ | |
double a, b;//Variables para numero complejo1 |